Loading
Scriptbox
 VBScript Links 
 About VBscript 
 JavaScript Links 
 About JavaScript 
 Powershell Links 
 PSCRIPT the Script Launcher 
 PowerShell Shortcut Keys 
 About Powershell 
     VBScript
    JavaScript
    Powershell
Disclaimer
Contact
Latest 10 Scripts
Script search
  :: { Category } :: 0-9ABCDEFGHIJKLMNOPQRSTUVWXYZ
         

Search Options:  List  Items  in  the  Recycle  Bin  Folder  

 Content of List Items in the Recycle Bin Folder.js
MD5 Hash: 48F33A86ECA74C6930D1DD6AA7D6712E
// description: reports the path to the recycle bin, and then lists any items found there. for windows nt 4.0 and windows 98, this script requires windows script host 5.1 and internet explorer 4.0 or later.


var recycle_bin = 0xa;

var objshell = new ActiveXObject("shell.application");
var objfolder = objshell.namespace(recycle_bin);
var objfolderitem = objfolder.self;
WScript.Echo(objfolderitem.path);

var colitems = objfolder.items();
var myJS_Enumerator_1 = new Enumerator(colitems);
for (;!myJS_Enumerator_1.atEnd();myJS_Enumerator_1.moveNext()) {
objitem = myJS_Enumerator_1.item();
WScript.Echo(objitem.name);
}

   © 2008 - 2013 Boris Toll      :: Scripts available: 6.481 ::      :: scriptbox.toll.at ::      :: powered by www.toll.at ::
  Google Entries:n/a
  Yahoo Backlinks:n/a
  Live Backlinks:n/a
  del.icio.us Bookmarks:n/a
  Technorati Links:n/a